FAQ: How to use License Shield SDK to add trial features in C++ Builder project?

If you are an C++ Builder Developer and looking for a solution to protect your C++ Builder applicaton, you can try our License Shield SDK. With a few function call in C++ Builder, it helps you "add trial features" in your C++ Builder projects easily and quickly.

C++ Builder

//---------------------------------------------------------------------------
void __fastcall TForm1::FormCreate(TObject *Sender)
{
    // Replace with your purchased License Key once you get one
    SetLicenseKey("Your-License-Key");

    // Set the parameters of the algorithm. NOTE: KeyBuilder should also use this parameter.
    SetAppKeys("My First Program", 34, 35, 1000);

    // Set the Pop-up Window (Register Window) displays information.
    SetAppRegWin("My First Program v1.00",
      "Copyright (C) 2012, Your Company. All rights reserved.",
      "You are using a unregistered version of My First Program. \r\nIf you want to using full functions, you must purchase a license.",
      "http://www.adeptshare.com/purchase.html");

    // Set TrialMode of Applicaton
    SetAppTrialMode(1, 10);

    // Pop-up Register Window, Should be last line of your protection code
    ShowAppRegWin();
}
//---------------------------------------------------------------------------

« Back to FAQ

See Also: